Re: retrieving varchar size

Поиск
Список
Период
Сортировка
От Michael Hirohama
Тема Re: retrieving varchar size
Дата
Msg-id l03110705b1698217f47d@[204.179.136.2]
обсуждение исходный текст
Ответ на Re: [HACKERS] Re: [INTERFACES] retrieving varchar size  (Bruce Momjian <maillist@candle.pha.pa.us>)
Ответы Re: [HACKERS] Re: retrieving varchar size
Re: [HACKERS] Re: retrieving varchar size
Список pgsql-interfaces
The historical reason why the POSTGRES backend is required to send multiple
result sets is to support cursors on queries involving type inheritance and
anonymous target lists.

    begin
    declare c cursor for
        select e.oid, e.* from EMP* e
    fetch 10 in c
    ...

To handle the command sequence above, frontend applications would need to
be provided with a new result descriptor when the "fetch 10 in c" crosses a
result set boundary.



В списке pgsql-interfaces по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: [HACKERS] Re: [INTERFACES] retrieving varchar size
Следующее
От: dg@illustra.com (David Gould)
Дата:
Сообщение: Re: [HACKERS] Re: [INTERFACES] retrieving varchar size